home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / DEZIP15.ARJ / README < prev    next >
Text File  |  1989-03-11  |  4KB  |  89 lines

  1.  
  2.  
  3.    DeZip v1.5 (C) Copyright 1989 by R. P. Byrne
  4.  
  5.    The DeZip program included in this package is a Turbo Pascal (v5.0)
  6.    implementation of a decompressor for ZIP format archives created with
  7.    PKWare's PKZIP program.
  8.  
  9.    The syntax for the DeZip program is:
  10.  
  11.       DeZip [d:][\path\]zipname[.zip] [d:][\outpath] [filespec [...]]
  12.  
  13.    where 'zipname' is the name of the ZIP file from which members are to be
  14.    extracted, 'outpath' is the name of a subdirectory into which all
  15.    extracted members will be placed, and 'filespec' represents a DOS file
  16.    specification (wildcards are allowed) limiting the extraction to one or
  17.    more matching file names.
  18.  
  19.    The only command line parameter that is required is the name of the ZIP
  20.    file to be processed.  If no filename extension is supplied, '.ZIP' is
  21.    assumed.  If no outpath is specified, the current drive/subdirectory
  22.    will be used.  If no filespec(s) are entered, '*.*' will be assumed.
  23.  
  24.    Examples:
  25.  
  26.       *  Extract all '.pas' files from the OneFile.Zip archive.  Place each
  27.          extracted member into the subdirectory e:\work:
  28.  
  29.                      DeZip OneFile.Zip e:\work *.pas
  30.  
  31.       *  Extract all files from the OneFile.Zip archive.  Place all
  32.          extracted members into the current subdirectory:
  33.  
  34.                      DeZip OneFile
  35.  
  36. ──────────────────────────────────────────────────────────────────────────
  37.  
  38.                                LICENSE
  39.  
  40. ──────────────────────────────────────────────────────────────────────────
  41.  
  42.      The DEZIP source and binaries ("software") are copyrighted.  However,
  43. I am distributing this software for free and you are licensed to use this
  44. software without any charge.
  45.  
  46.      Redistribution of this software is encouraged.  Please do share it
  47. with your friends, upload it to bulletin board systems, etc.  However,
  48. as I am making this software available for free, you must do the same.
  49. You are not permitted by this license to request or accept any
  50. remuneration of any kind for this software.  This prohibition extends to
  51. including my software with any other product or service for which money
  52. is charged.
  53.  
  54.      The only exceptions to this "don't charge for what I'm giving away
  55. for free" restriction are as follows:
  56.  
  57.      (1) Bulletin board systems or other electronic information services
  58. are permitted to make this software available for download and charge
  59. their customary fees, if any, for access to the service.
  60.  
  61.      (2) Users groups and other not-for-profit organizations that
  62. distribute this software may charge a reasonable fee to cover
  63. duplication and related costs.
  64.  
  65.      (3) There may be other situations not covered by this license where
  66. some charge for distribution would be appropriate.  Contact me and we'll
  67. talk about it.  But, this license does not authorize any such
  68. distribution without express, written permission from me in advance.
  69.  
  70.      You may distribute modified copies of my source and resulting
  71. executables (including programs derived from mine in other languages or
  72. for other operating systems) so long as you do so for free and pursuant
  73. to a license no more restrictive than this one.  You must state that
  74. your software was derived from mine.  But, please take credit for your
  75. improvements and blame for your mistakes by making it as clear as
  76. possible what changes you have made.
  77.  
  78.      Except as provided above, if you do wish to charge for my software
  79. or for any software derived from mine, then you must contact me for
  80. prior permission.  In short, if you're going to ask for money, then
  81. we're going to share in whatever you receive.  That's only fair.
  82.  
  83.      This software is distributed without warranties of any kind,
  84. express or implied, including, but not limited to, the implied
  85. warranties of merchantability and fitness for a particular purpose.
  86.                                                          rpb
  87.                                                        03/11/89
  88.  
  89.